home *** CD-ROM | disk | FTP | other *** search
/ Champak Vol A-4 / (Vol A-4) Vol. A4.iso / Games / loa_and_the_island.swf / scripts / frame_212 / PlaceObject2_966_1515 / CLIPACTIONRECORD onClipEvent(enterFrame).as
Text File  |  2008-03-17  |  628b  |  27 lines

  1. onClipEvent(enterFrame){
  2.    if(_root.paused == false)
  3.    {
  4.       if(_global.health <= 0)
  5.       {
  6.          _root.level.sprite.gotoAndStop("dead");
  7.          _root.paused = true;
  8.       }
  9.       if(_global.health > _global.maxhealth)
  10.       {
  11.          _global.health = _global.maxhealth;
  12.       }
  13.       if(_global.difficulty == "normal")
  14.       {
  15.          gotoAndStop(211, _global.health * 5);
  16.       }
  17.       if(_global.difficulty == "easy")
  18.       {
  19.          gotoAndStop(211, _global.health);
  20.       }
  21.       if(_global.difficulty == "hard")
  22.       {
  23.          gotoAndStop(211, _global.health * 10);
  24.       }
  25.    }
  26. }
  27.